body { margin: 0; font-family: Arial, sans-serif; } header { background: #111; color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; } nav a { color: white; margin-left: 20px; text-decoration: none; font-weight: bold; } .hero { height: 90vh; background: url('https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg') center/cover no-repeat; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; backdrop-filter: brightness(0.4); } .hero h1 { font-size: 2.8rem; background: rgba(0,0,0,0.5); padding: 10px 20px; } .btn { padding: 10px 20px; background: #ffcb00; color: #111; text-decoration: none; font-weight: bold; border-radius: 5px; margin-top: 20px; } .section { padding: 50px 20px; text-align: center; } .service-box { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .item { background: #f5f5f5; width: 280px; padding: 20px; border-radius: 10px; text-align: center; } .gallery-box { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; } .gallery-box img { width: 300px; border-radius: 8px; } form { max-width: 400px; margin: auto; } form input, form textarea { width: 100%; padding: 12px; margin: 10px 0; } footer { background: #111; color: white; padding: 20px; text-align: center; } footer a { color: #ffcb00; text-decoration: none; font-weight: bold; }